home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / presto / presto10.lha / rmlinks < prev   
Text File  |  1991-12-13  |  118b  |  6 lines

  1. #! /bin/sh
  2. # remove all symbolic links below first argument (assumed to be a dir)
  3.  
  4. find $1 -type l -print | xargs rm
  5.  
  6.